home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 2120 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  874 b 

  1. Path: news.compuserve.com!newsmaster
  2. From: <76525.3703@compuserve.com>
  3. Newsgroups: comp.lang.c++
  4. Subject: Borland vs MSFT DLL size
  5. Date: 16 Jan 1996 02:03:02 GMT
  6. Organization: CompuServe Incorporated
  7. Message-ID: <4df10m$2ta@dub-news-svc-5.compuserve.com>
  8. NNTP-Posting-Host: hd37-026.compuserve.com
  9. Content-Type: text/plain
  10. Content-length: 482
  11. X-Newsreader: AIR Mosaic (16-bit) version 3.10.08.25
  12.  
  13.  
  14.  Sounds like you're linking the entire Borland C run-time to your DLL.  Also, if you're
  15. not using RTTI and exception handling, make sure your using the run-time library
  16. with no run-time exception handling support.  That last faster would account for some
  17. of the size but not the magnitude your describing.   I think it's most like that the
  18. run-time library is be linked into your DLL whereas the VC++ is just your code and
  19. dynamically linking to the VC++ run-time DLLs.
  20.  
  21. Mike
  22.